// ✅ Функция работает с ЛЮБЫМ непрерывным контейнером! void processData(std::span<const int> data) { for (const auto& item : data) { // Обработка } }
int main() { // Работает с std::vector std::vector<int> vec = {1, 2, 3, 4, 5}; processData(vec);
// Работает с std::array std::array<int, 3> arr = {10, 20, 30}; processData(arr);
// Работает с C-массивами int classic[] = {100, 200, 300}; processData(classic);
// Работает с подпоследовательностями! processData(std::span(vec).subspan(1, 3)); // Только элементы 2,3,4 }
❗️Преимущества std::span:
- Не владеет данными (zero overhead) - Безопасно передает подпоследовательности - Унифицированный интерфейс для всех контейнеров - Выразительный код без шаблонных параметров
// ✅ Функция работает с ЛЮБЫМ непрерывным контейнером! void processData(std::span<const int> data) { for (const auto& item : data) { // Обработка } }
int main() { // Работает с std::vector std::vector<int> vec = {1, 2, 3, 4, 5}; processData(vec);
// Работает с std::array std::array<int, 3> arr = {10, 20, 30}; processData(arr);
// Работает с C-массивами int classic[] = {100, 200, 300}; processData(classic);
// Работает с подпоследовательностями! processData(std::span(vec).subspan(1, 3)); // Только элементы 2,3,4 }
❗️Преимущества std::span:
- Не владеет данными (zero overhead) - Безопасно передает подпоследовательности - Унифицированный интерфейс для всех контейнеров - Выразительный код без шаблонных параметров
Telegram is an aspiring new messaging app that’s taking the world by storm. The app is free, fast, and claims to be one of the safest messengers around. It allows people to connect easily, without any boundaries.You can use channels on Telegram, which are similar to Facebook pages. If you’re wondering how to find channels on Telegram, you’re in the right place. Keep reading and you’ll find out how. Also, you’ll learn more about channels, creating channels yourself, and the difference between private and public Telegram channels.
Telegram Gives Up On Crypto Blockchain Project
Durov said on his Telegram channel today that the two and a half year blockchain and crypto project has been put to sleep. Ironically, after leaving Russia because the government wanted his encryption keys to his social media firm, Durov’s cryptocurrency idea lost steam because of a U.S. court. “The technology we created allowed for an open, free, decentralized exchange of value and ideas. TON had the potential to revolutionize how people store and transfer funds and information,” he wrote on his channel. “Unfortunately, a U.S. court stopped TON from happening.”
Библиотека C C разработчика | cpp boost qt from nl